*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
.About-Section{
    width: 100%;
    min-height: 100vh;
    background-color: white;
}
.About-Container{
    width: 80%;
    display: block;
    margin: auto;
    padding-top: 100px;
}
.About-Content-Section{
    float: left;
    width: 55%;
}
.About-Image-Section{
    float: right;
    width: 40%;
}
.About-Image-Section img{
    width: 93%;
    height: auto;
}
.About-Content-Section .About-Title .About-Heading{
    text-transform: uppercase;
    font-size: 28px;
    color: #ffd700;
}
.About-Content h3{
    margin-top: 20px;
    font-size: 21px;
    color: teal;
}
.About-Content p{
    margin-top: 10px;
    font-family: sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: black;
}
.About-Content-Section .About-Social{
    margin: 40px 40px;
}
.About-Content-Section .About-Social i{
    color: black;
    font-size: 30px;
    padding: 0px 10px;
}
.About-Content-Section .About-Social i:hover{
    color: #008080;
}

@media (max-width: 1080px) {
    .About-Container {
        width: 90%;
        padding-top: 80px;
    }

    .About-Content-Section,
    .About-Image-Section {
        float: none;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .About-Image-Section img {
        width: 70%;
        margin: 20px 0;
        height: auto;
    }

    .About-Content-Section .About-Title .About-Heading {
        font-size: 24px; /* Adjust heading font size */
        color: #008080;  /* Change heading color */
    }

    .About-Content h3 {
        font-size: 18px; /* Adjust h3 font size */
        color: #ffd700;  /* Change h3 color */
    }

    .About-Content p {
        font-size: 16px; /* Adjust paragraph font size */
        color: black;
    }

    .About-Content-Section .About-Social {
        margin: 20px 0; /* Adjust margin for social icons */
        text-align: center; /* Center-align social icons */
    }

    .About-Content-Section .About-Social i {
        font-size: 25px; /* Reduce icon size */
        padding: 0 8px;   /* Adjust icon padding */
        color: black;
    }

    .About-Content-Section .About-Social i:hover {
        color: #ffd700; /* Hover color for social icons */
    }
}

@media (max-width: 1024px) {
    .About-Container {
        width: 90%;
        padding-top: 80px;
    }

    .About-Content-Section,
    .About-Image-Section {
        float: none;
        width: 100%;
        text-align: center;
    }

    .About-Image-Section img {
        width: 80%;
        margin: auto;
    }

    .About-Content-Section .About-Social {
        margin: 20px auto;
    }
}

@media (max-width: 912px) {
    .About-Container {
        width: 95%;
        padding-top: 70px;
    }

    .About-Heading {
        font-size: 26px;
    }

    .About-Content h3 {
        font-size: 20px;
    }

    .About-Content p {
        font-size: 13px;
    }

    .About-Content-Section .About-Social i {
        font-size: 28px;
    }
}

@media (max-width: 853px) {
    .About-Container {
        width: 95%;
        padding-top: 60px;
    }

    .About-Heading {
        font-size: 24px;
    }

    .About-Image-Section img {
        width: 90%;
    }

    .About-Content h3 {
        font-size: 19px;
    }

    .About-Content p {
        font-size: 12px;
    }

    .About-Content-Section .About-Social i {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .About-Container {
        width: 90%; /* Adjust container width to fit smaller screens */
        padding-top: 50px; /* Adjust top padding */
    }

    .About-Content-Section, .About-Image-Section {
        float: none; /* Remove float to stack content vertically */
        width: 100%; /* Set both sections to full width */
        margin-bottom: 20px; /* Space between sections */
    }

    .About-Image-Section img {
        width: 100%; /* Make image responsive to the container */
        height: auto; /* Keep aspect ratio intact */
    }

    .About-Content-Section .About-Title .About-Heading {
        font-size: 24px; /* Adjust heading font size */
        color:#008080; /* Change heading color */
    }

    .About-Content h3 {
        font-size: 18px; /* Adjust h3 font size */
        color: #ffd700; /* Change h3 color */
    }

    .About-Content p {
        font-size: 16px; /* Adjust paragraph font size */
        color: black;
    }

    .About-Content-Section .About-Social {
        margin: 20px 0; /* Adjust margin for social icons */
        text-align: center; /* Center-align social icons */
    }

    .About-Content-Section .About-Social i {
        font-size: 25px; /* Reduce icon size */
        padding: 0 8px; /* Adjust icon padding */
        color: black;
    }

    .About-Content-Section .About-Social i:hover {
        color: #ffd700; /* Hover color for social icons */
    }
}

@media (max-width: 480px) {
    /* About Container */
    .About-Container {
        width: 90%; /* Adjust container width to fit smaller screens */
        padding-top: 40px; /* Adjust top padding for better spacing */
    }

    /* About Content Section and Image Section */
    .About-Content-Section, .About-Image-Section {
        float: none; /* Remove float to stack content vertically */
        width: 100%; /* Set both sections to full width */
        margin-bottom: 18px; /* Adjust space between sections */
    }

    .About-Image-Section img {
        width: 100%; /* Make image responsive to the container */
        height: auto; /* Keep aspect ratio intact */
    }

    /* About Title */
    .About-Content-Section .About-Title .About-Heading {
        font-size: 22px; /* Adjust heading font size */
        color: #008080; /* Change heading color */
    }

    /* About Content */
    .About-Content h3 {
        font-size: 17px; /* Adjust h3 font size for smaller screens */
        color: #ffd700; /* Change h3 color */
    }

    .About-Content p {
        font-size: 15px; /* Adjust paragraph font size for better readability */
        color: black;
    }

    /* About Social Icons */
    .About-Content-Section .About-Social {
        margin: 15px 0; /* Adjust margin for social icons */
        text-align: center; /* Center-align social icons */
    }

    .About-Content-Section .About-Social i {
        font-size: 23px; /* Reduce icon size */
        padding: 0 8px; /* Adjust icon padding */
        color: black;
    }

    .About-Content-Section .About-Social i:hover {
        color: #ffd700; /* Hover color for social icons */
    }
}

@media (max-width: 414px) {
    /* About Container */
    .About-Container {
        width: 90%; /* Adjust container width to fit smaller screens */
        padding-top: 45px; /* Adjust top padding for better spacing */
    }

    /* About Content Section and Image Section */
    .About-Content-Section, .About-Image-Section {
        float: none; /* Remove float to stack content vertically */
        width: 100%; /* Set both sections to full width */
        margin-bottom: 18px; /* Adjust space between sections */
    }

    .About-Image-Section img {
        width: 100%; /* Make image responsive to the container */
        height: auto; /* Keep aspect ratio intact */
    }

    /* About Title */
    .About-Content-Section .About-Title .About-Heading {
        font-size: 22px; /* Adjust heading font size */
        color: #008080; /* Heading color */
    }

    /* About Content */
    .About-Content h3 {
        font-size: 17px; /* Adjust h3 font size for smaller screens */
        color: #ffd700; /* Change h3 color */
    }

    .About-Content p {
        font-size: 15px; /* Adjust paragraph font size for better readability */
        color: black;
    }

    /* About Social Icons */
    .About-Content-Section .About-Social {
        margin: 15px 0; /* Adjust margin for social icons */
        text-align: center; /* Center-align social icons */
    }

    .About-Content-Section .About-Social i {
        font-size: 23px; /* Reduce icon size */
        padding: 0 8px; /* Adjust icon padding */
        color: black;
    }

    .About-Content-Section .About-Social i:hover {
        color: #ffd700; /* Hover color for social icons */
    }
}

@media (max-width: 375px) {
    /* About Container */
    .About-Container {
        width: 90%; /* Adjust container width to fit smaller screens */
        padding-top: 40px; /* Adjust top padding for better spacing */
    }

    /* About Content Section and Image Section */
    .About-Content-Section, .About-Image-Section {
        float: none; /* Remove float to stack content vertically */
        width: 100%; /* Set both sections to full width */
        margin-bottom: 15px; /* Reduced space between sections */
    }

    .About-Image-Section img {
        width: 100%; /* Make image responsive to the container */
        height: auto; /* Keep aspect ratio intact */
    }

    /* About Title */
    .About-Content-Section .About-Title .About-Heading {
        font-size: 22px; /* Adjust heading font size */
        color: #008080; /* Heading color */
    }

    /* About Content */
    .About-Content h3 {
        font-size: 17px; /* Adjust h3 font size for smaller screens */
        color: #ffd700; /* Change h3 color */
    }

    .About-Content p {
        font-size: 15px; /* Adjust paragraph font size for better readability */
        color: black;
    }

    /* About Social Icons */
    .About-Content-Section .About-Social {
        margin: 15px 0; /* Adjust margin for social icons */
        text-align: center; /* Center-align social icons */
    }

    .About-Content-Section .About-Social i {
        font-size: 22px; /* Reduce icon size */
        padding: 0 7px; /* Adjust icon padding */
        color: black;
    }

    .About-Content-Section .About-Social i:hover {
        color: #ffd700; /* Hover color for social icons */
    }
}

@media (max-width: 360px) {
    /* About Container */
    .About-Container {
        width: 90%; /* Adjust container width to fit smaller screens */
        padding-top: 40px; /* Adjust top padding for better spacing */
    }

    /* About Content Section and Image Section */
    .About-Content-Section, .About-Image-Section {
        float: none; /* Remove float to stack content vertically */
        width: 100%; /* Set both sections to full width */
        margin-bottom: 15px; /* Reduced space between sections */
    }

    .About-Image-Section img {
        width: 100%; /* Make image responsive to the container */
        height: auto; /* Keep aspect ratio intact */
    }

    /* About Title */
    .About-Content-Section .About-Title .About-Heading {
        font-size: 20px; /* Adjust heading font size */
        color: #008080; /* Heading color */
    }

    /* About Content */
    .About-Content h3 {
        font-size: 16px; /* Adjust h3 font size for smaller screens */
        color: #ffd700; /* Change h3 color */
    }

    .About-Content p {
        font-size: 14px; /* Adjust paragraph font size for better readability */
        color: black;
    }

    /* About Social Icons */
    .About-Content-Section .About-Social {
        margin: 15px 0; /* Adjust margin for social icons */
        text-align: center; /* Center-align social icons */
    }

    .About-Content-Section .About-Social i {
        font-size: 20px; /* Reduce icon size */
        padding: 0 6px; /* Adjust icon padding */
        color: black;
    }

    .About-Content-Section .About-Social i:hover {
        color: #ffd700; /* Hover color for social icons */
    }
}